chore: update github actions #34
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# TODO(68): Add `windows-latest` and support. | |
os: [ubuntu-latest] | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: "yarn" | |
- name: Use node_modules cache | |
id: node-modules-cache | |
uses: actions/cache@v4 | |
with: | |
path: node_modules | |
key: node-modules-${{ runner.os }}-${{ matrix.node-version }}-${{ hashFiles('./yarn.lock') }} | |
restore-keys: | | |
node-modules-${{ runner.os }}-${{ matrix.node-version }}- | |
node-modules-${{ runner.os }}- | |
- name: Project installation | |
if: steps.node-modules-cache.outputs.cache-hit != 'true' | |
run: yarn install --prefer-offline --frozen-lockfile --non-interactive | |
env: | |
CI: true | |
- name: Basic script runs | |
run: node index.js | |
- name: Checks | |
run: yarn run check | |
env: | |
# Webpack fails due to crypto enforcements in Node 17+ | |
# See, e.g., https://github.com/webpack/webpack/issues/14532 | |
NODE_OPTIONS: ${{ matrix.node-version == '18.x' && '--openssl-legacy-provider' || '' }} |