-
Notifications
You must be signed in to change notification settings - Fork 1
51 lines (40 loc) · 1.09 KB
/
test.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
49
50
51
name: Test
on: push
jobs:
build:
runs-on: ubuntu-latest
env:
NODE_OPTIONS: "--max_old_space_size=4096"
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
cache: "yarn"
- name: Register yarn 1.x cache folder
id: yarn-cache-folder
shell: bash
run: |
echo "path=$(yarn cache dir)" >> $GITHUB_OUTPUT
- name: Setup yarn 3.x
run: |
corepack enable
corepack prepare yarn@stable --activate
yarn --version
- name: Install packages
env:
YARN_CACHE_FOLDER: ${{ steps.yarn-cache-folder.outputs.path }}
run: yarn install --immutable
- name: Check format
run: yarn format:ci
- name: Run linter
run: yarn lint:ci
- name: Run tests
env:
CI: true
run: yarn test
- name: Build
run: yarn build
# this is needed to ensure that actions/setup-node will pick up yarn cache
- name: Remove yarn 3.5
run: corepack disable