-
Notifications
You must be signed in to change notification settings - Fork 20
48 lines (40 loc) · 1.01 KB
/
main.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: Next.js CI
on:
push:
paths:
- ".github/workflows/main.yaml"
- "packages/nextjs/**"
- "package.json"
pull_request:
branches:
- main
paths:
- "packages/nextjs/**"
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-22.04]
node: [lts/*]
steps:
- name: Checkout
uses: actions/checkout@master
- name: Enable Corepack
run: corepack enable
- name: Setup node env
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install dependencies (Next.js)
run: |
yarn config set nodeLinker node-modules
yarn install --no-immutable
working-directory: ./packages/nextjs
- name: Install scarb
uses: software-mansion/setup-scarb@v1
with:
scarb-version: "2.8.4"
scarb-lock: ./packages/snfoundry/contracts/Scarb.lock
- name: Run Next.js Tests
run: yarn test:nextjs